home *** CD-ROM | disk | FTP | other *** search
- #ifndef __GRAPHAPP_H
- #define __GRAPHAPP_H
-
- // -[Keep_Heading]-
-
-
- // -[Copyright_Mesg]-
- // --------------------------------------------------------------- //
- // (c) Copyright 1993-1994. Step Ahead Software Pty Limited. All rights reserved.
- // Class Header Filename: GRAPHAPP.h
- // Description:
- // Graphics application developed with C++Creator. This class is derived from
- // TApplication.
- // --------------------------------------------------------------- //
- #define CC_GEN 1
- #include <APPLICAT.h>
-
-
- // -[Keep_h_Extras]-
-
-
- // -[Class_Dec]-
- class GraphicApplication;
- typedef GraphicApplication * PGraphicApplication;
- typedef GraphicApplication & RGraphicApplication;
- typedef GraphicApplication * & RPGraphicApplication;
- typedef const GraphicApplication * PCGraphicApplication;
- typedef const GraphicApplication & RCGraphicApplication;
-
- class GraphicApplication : public TApplication
- {
- // -[Keep_Class_Extras]-
-
-
- // -[Member_Data_Decs]-
-
-
- // -[Member_Function_Decs]-
- public:
-
- GraphicApplication(LPSTR AName, HANDLE hInstance, HANDLE hPrevInstance, LPSTR lpCmdLine, int nCmdShow);
-
- virtual void InitMainWindow(void);
- protected:
- private:
-
-
- // -[Persistent_1]-
- };
-
- // -[Persistent_2]-
-
-
- // -[Keep]-
-
-
- // -[Global_Data_Decs]-
-
-
- // -[Global_Function_Decs]-
-
- // -[Function_Defs]-
-
- // -[End_Cond]-
- #endif __GRAPHAPP_H